home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / gle / font / makefile < prev    next >
Encoding:
Makefile  |  1992-11-29  |  1.4 KB  |  53 lines

  1. # User tunable macros
  2. CC=         gcc
  3. OPTIMIZE=    
  4. WARN=        -w  #-W -Wunused -Wimplicit -Wreturn-type -Wcomment    # for gcc only
  5. CFLAGS= $(OPTIMIZE) $(WARN)
  6. # object files
  7.  
  8. FVE = \
  9.     glemark.fve plba.fve plcc.fve plcg.fve plci.fve \
  10.     plcr.fve plcs.fve pldr.fve plge.fve \
  11.     plgg.fve plgi.fve plsa.fve plsg.fve \
  12.     plsr.fve plss.fve plsym1.fve plsym2.fve \
  13.     plti.fve pltr.fve texcmb.fve texcmex.fve \
  14.     texcmitt.fve texcmmi.fve texcmr.fve texcmss.fve \
  15.     texcmssb.fve texcmssi.fve texcmsy.fve texcmti.fve \
  16.     texcmtt.fve 
  17. FMT =     \
  18.     glemark.fmt plba.fmt plcc.fmt plcg.fmt \
  19.     plci.fmt plcr.fmt plcs.fmt pldr.fmt \
  20.     plge.fmt plgg.fmt plgi.fmt plsa.fmt plsg.fmt \
  21.     plsr.fmt plss.fmt plsym1.fmt plsym2.fmt plti.fmt \
  22.     pltr.fmt psagb.fmt psagbo.fmt psagd.fmt psagdo.fmt \
  23.     psbd.fmt psbdi.fmt psbli.fmt psc.fmt pscb.fmt \
  24.     pscbo.fmt psco.fmt psh.fmt pshb.fmt pshbo.fmt \
  25.     pshc.fmt pshcb.fmt pshcbo.fmt pshcdo.fmt pshn.fmt \
  26.     pshnb.fmt pshnbo.fmt pshno.fmt psho.fmt psncsb.fmt \
  27.     psncsbi.fmt psncsi.fmt psncsr.fmt pspb.fmt pspbi.fmt \
  28.     pspi.fmt pspr.fmt pssym.fmt pstb.fmt pstbi.fmt \
  29.     psti.fmt pstr.fmt pszcmi.fmt pszd.fmt texcmb.fmt \
  30.     texcmex.fmt texcmitt.fmt texcmmi.fmt texcmr.fmt texcmsl.fmt \
  31.     texcmss.fmt texcmssb.fmt texcmssi.fmt texcmsy.fmt texcmti.fmt \
  32.     texcmtt.fmt  
  33.  
  34. allfonts: $(FVE) $(FMT)
  35.     echo done
  36.  
  37. .SUFFIXES: .fve .fmt .afm .gle
  38.  
  39. .afm.fmt:
  40.     ../makefmt $<
  41.     
  42. .gle.fve:
  43.     ../fbuild $<
  44.  
  45. #%.fmt: %.afm
  46. #    ../makefmt $(basename $<)
  47.  
  48. #%.fve: %.gle
  49. #    ../fbuild $(basename $<)
  50.  
  51.  
  52.  
  53.